home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Papers / C++ Exceptions / µShell / Core Utilities / AEThreads.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-02  |  404 b   |  20 lines  |  [TEXT/CWIE]

  1. #ifndef __AETHREADS__
  2. #define __AETHREADS__
  3. #pragma once
  4.  
  5. #ifndef __APPLEEVENTS__
  6. #include <AppleEvents.h>
  7. #endif
  8. #ifndef __THREADS__
  9. #include <Threads.h>
  10. #endif
  11.  
  12. pascal OSErr AEInstallThreadedEventHandler(
  13.                     AEEventClass theAEEventClass,
  14.                     AEEventID theAEEventID,
  15.                     AEEventHandlerProcPtr proc,
  16.                     long handlerRefcon,
  17.                     ThreadOptions options,
  18.                     Size stacksize);    
  19.  
  20. #endif // __AETHREADS__